home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-18 | 772 b | 42 lines | [TEXT/MPS ] |
- /*
- * ODBCdbmsSetup.exp
- *
- * Export declarations for the data setup library
- *
- * ) 1993 by Apple Computer, Inc., all rights reserved.
- */
-
- #include <ODBCASLM.h>
-
- /*
- * These defines are library specific and need to be unique
- */
-
- #define kODBCdbmsSetupID "appl:ODBC$ODBCdbmsSetupLibrary,1.0"
- #define kODBCdbmsSetupFunctionSet "appl:ODBC$ODBCdbmsSetupFunctionSet,1.0"
-
- /*
- * The setup library file
- */
-
- Library
- {
- initproc = SampleSetupInit;
- cleanupProc = SampleSetupObit;
- id = kODBCdbmsSetupID;
- version = 1.0;
- memory = client;
- };
-
- /*
- * The setup function set within the library file
- */
-
- FunctionSet ODBCdbmsSetupFunctionSet
- {
- id = kODBCdbmsSetupFunctionSet;
- parentID = kODBCdbmsSetupParentID;
- version = 1.0;
- exports = extern pascal ConfigDSN;
- };
-